home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / exer / chap1 / exer0114 / Employee.java
Encoding:
Text File  |  1997-04-19  |  83 b   |  7 lines

  1. class Employee {
  2.    int id;
  3.    Employee(int id) {
  4.       this.id = id;
  5.    }
  6. }
  7.